From 3bbea9cb915ec930cbf53cd7dbd3260aa4299847 Mon Sep 17 00:00:00 2001 From: Carlos Galdino Date: Thu, 19 Nov 2015 14:47:33 -0200 Subject: [PATCH] Fix `cargo-uninstall`. With this patch users can type `cargo help uninstall` or `cargo uninstall -h` and it will display the `USAGE` message as it was supposed to. Before the patch the command would display an error message about invalid arguments. Fixes #2138. --- src/bin/uninstall.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/uninstall.rs b/src/bin/uninstall.rs index 20d4b5799..e78bf605f 100644 --- a/src/bin/uninstall.rs +++ b/src/bin/uninstall.rs @@ -17,6 +17,7 @@ Remove a Rust binary Usage: cargo uninstall [options] + cargo uninstall (-h | --help) Options: -h, --help Print this message -- 2.30.2